4D Chart v13CT GET TITLE ATTRIBUTES |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
4D Chart v13
CT GET TITLE ATTRIBUTES
|
CT GET TITLE ATTRIBUTES ( area ; object ; axis ; position ; orientation ; title ) | ||||||||
Parameter | Type | Description | ||||||
area | Longint |
![]() |
4D Chart area | |||||
object | Longint |
![]() |
Object ID | |||||
axis | Integer |
![]() |
Axis for which to get attributes 0 = Category 1 = Series 2 = Values | |||||
position | Integer |
![]() |
Receives position of title 0 = None 1 = Top 2 = Left 3 = Bottom 4 = Right | |||||
orientation | Integer |
![]() |
Receives orientation of title 0 = Normal 1 = Vertical 2 = Rotated right 3 = Rotated left | |||||
title | String |
![]() |
Receives text of title | |||||
The CT GET TITLE ATTRIBUTES command returns the position, orientation, and text of the axis title specified by area, object, and axis.
position is the position of the title relative to the graph.
orientation is the orientation of the title.
title is the text of the title. The maximum length of the title is 255 characters.
Note: To get the text attributes of a title, use the CT GET CHART TEXT ATTRIBUTES command.
This example returns Category axis title attributes in the $Position, $Orient, and $Title variables.
CT GET TITLE ATTRIBUTES(Area;$ChartID;0;$Position;$Orient;$Title)
Product: 4D Chart
Theme: CT Chart
Number:
14543
Created: 4D Chart 1
CT GET CHART TEXT ATTRIBUTES
CT SET TITLE ATTRIBUTES